home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 1996 July / Macworld (1996-07).dmg / System 7.5 Update 2.0 / FileMaker Pro 3.0 CD Extras / FileMaker And Apple Events / Syntax Examples / Events / Whose Examples < prev   
Encoding:
Text File  |  1996-01-25  |  504 b   |  11 lines  |  [TEXT/ToyS]

  1. tell application "FileMaker Pro"
  2.     show every record of database 1
  3.     show every record of database 2
  4.     get data (every record of database 1 whose last cell = 7)
  5.     every record whose cell "a" = 1 and cell 2 contains "cat"
  6.     show (every record of database 1 whose first cell = "test")
  7.     show (every record of database 1 whose fourth cell = "")
  8.     show (every record of database 1 whose fourth cell ≠ "")
  9.     duplicate (every record whose first cell = "test")
  10.     delete (middle record whose first cell = "test")
  11. end tell